home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’96 / O Boy / Source / PropertyValue_pd.cp < prev    next >
Encoding:
Text File  |  1996-06-21  |  738 b   |  36 lines  |  [TEXT/R*ch]

  1. /*
  2.     PropertyValue_pd.cp
  3.     © Bob Boylan 1996
  4.  
  5.     Revision History
  6.     MacHack 1996    initial creation
  7. */
  8. #include "PropertyValue_pd.h"
  9.  
  10. //    ----------------------------------------------------
  11. //    ctors
  12. //
  13. PropertyValue_pd::PropertyValue_pd( )
  14. {}
  15. PropertyValue_pd::PropertyValue_pd( PropertyValue_pd &inOther )
  16. {
  17.     _PropID = inOther._PropID;
  18.     _Value  = inOther._Value;
  19.     _PropertyName = inOther._PropertyName;
  20.  
  21. }
  22. PropertyValue_pd::PropertyValue_pd(        DescType inPropertyID, 
  23.                                       Clone_ut<StAEDescriptor> inValue,
  24.                                       string & inPropertyName )
  25.     : _PropID( inPropertyID ),
  26.       _Value( inValue ),
  27.       _PropertyName( inPropertyName )
  28. {
  29.  
  30. }
  31. //    -------------------------------------------------
  32. //    dtor
  33. //
  34. PropertyValue_pd::~PropertyValue_pd()
  35. {}
  36.